home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / Jserv_css.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  62 lines

  1. #
  2. # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10957);
  10.  script_version ("$Revision: 1.11 $");
  11.  name["english"] = "JServ Cross Site Scripting";
  12.  name["francais"] = "JServ Cross Site Scripting";
  13.  script_name(english:name["english"], francais:name["francais"]);
  14.  
  15.  desc["english"] = "Older versions of JServ (including the version 
  16.  shipped with Oracle9i App Server v1.0.2) are vulnerable to a 
  17.  cross site scripting attack using a request for a non-existent 
  18.  .JSP file.
  19.  
  20. Solution: Upgrade to the latest version of JServ available at 
  21. java.apache.org. Also consider switching from JServ to TomCat, 
  22. since JServ is no longer maintained.
  23.  
  24. Risk factor : Medium";
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Tests for JServ Cross Site Scripting";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_ATTACK);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
  35.         francais:"Ce script est Copyright (C) 2002 Matt Moore");
  36.  family["english"] = "CGI abuses : XSS";
  37.  family["francais"] = "Abus de CGI";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  40.  script_require_ports("Services/www", 80);
  41.  exit(0);
  42. }
  43.  
  44. # Check starts here
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47.  
  48. port = get_http_port(default:80);
  49.  
  50. if(get_kb_item(string("www/", port, "/generic_xss")))exit(0);
  51.  
  52. sig = get_kb_item("www/hmap/" + port + "/description");
  53. if ( sig && "Apache" >!< sig ) exit(0);
  54.  
  55. if(get_port_state(port))
  56.  req = http_get(item:"/a.jsp/<SCRIPT>alert(document.domain)</SCRIPT>", port:port);
  57.  res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  58.  if( res == NULL ) exit(0);
  59.  if("<SCRIPT>alert(document.domain)</SCRIPT>" >< res) security_warning(port);
  60. }
  61.